/* Mobile Marketing Section Styles */
.mobile-marketing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    overflow: hidden;
    position: relative;
}

.mobile-marketing-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.content-left {
    flex: 0 1 45%;
}

.content-left h2 {
    font-size: 2.2rem;
    color: #009688;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.content-left h2::before {
    display: none;
}

.content-left p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
}

.request-callback {
    background: #009688;
    color: white;
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 150, 136, 0.2);
}

.request-callback:hover {
    background-color: #008F72;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 132, 0.3);
}

.request-callback:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 168, 132, 0.2);
}

.content-right {
    flex: 0 1 55%;
    position: relative;
}

.mobile-illustration {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    overflow: hidden;
    background: transparent !important;
    box-shadow: none;
    border-radius: 0;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    background: transparent !important;
    border: none;
    outline: none;
    mix-blend-mode: multiply;
}

/* Cloud Background */
.cloud-bg {
    position: absolute;
    width: 80%;
    height: 60%;
    background: linear-gradient(180deg, #E8F4FF 0%, #F8FBFF 100%);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.8;
    z-index: 1;
}

/* Rocket Container */
.rocket-container {
    position: relative;
    z-index: 2;
}

.rocket {
    width: 200px;
    height: auto;
    animation: rocketFloat 4s ease-in-out infinite;
}

/* Social Media Icons */
.social-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.social-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.social-icon.instagram {
    top: 10%;
    right: -60px;
    animation: float 3s ease-in-out infinite;
}

.social-icon.facebook {
    top: 40%;
    left: -50px;
    animation: float 3s ease-in-out infinite 0.5s;
}

.social-icon.tiktok {
    bottom: 20%;
    right: -40px;
    animation: float 3s ease-in-out infinite 1s;
}

.social-icon.youtube {
    top: -20px;
    left: 50%;
    animation: float 3s ease-in-out infinite 1.5s;
}

.social-icon.whatsapp {
    bottom: -10px;
    left: 30%;
    animation: float 3s ease-in-out infinite 2s;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
}

.float-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.float-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pie-chart {
    top: 5%;
    left: 10%;
    animation: float 4s ease-in-out infinite;
}

.target {
    bottom: 15%;
    right: 15%;
    animation: float 4s ease-in-out infinite 0.5s;
}

.bell {
    top: 20%;
    right: 10%;
    animation: float 4s ease-in-out infinite 1s;
}

.clock {
    bottom: 25%;
    left: 15%;
    animation: float 4s ease-in-out infinite 1.5s;
}

/* Emoji Elements */
.emoji {
    position: absolute;
    font-size: 30px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.smile-1 {
    top: 15%;
    right: 25%;
    animation: float 4s ease-in-out infinite 0.7s;
}

.smile-2 {
    bottom: 20%;
    left: 25%;
    animation: float 4s ease-in-out infinite 1.2s;
}

.wink {
    top: 40%;
    right: 15%;
    animation: float 4s ease-in-out infinite 1.7s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes rocketFloat {
    0%, 100% {
        transform: translateY(0) rotate(2deg);
    }
    50% {
        transform: translateY(-20px) rotate(-2deg);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .mobile-marketing-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .content-left {
        flex: 0 1 100%;
    }

    .content-right {
        flex: 0 1 100%;
    }

    .mobile-illustration {
        height: 400px;
    }

    .video-container {
        max-width: 400px;
    }

    .content-left h2 {
        font-size: 1.8rem;
    }

    .content-left p {
        font-size: 0.9rem;
        margin-bottom: 1.8rem;
    }

    .rocket {
        width: 150px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
    }

    .float-icon {
        width: 40px;
        height: 40px;
    }

    .emoji {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .mobile-marketing-section {
        padding: 40px 0;
    }

    .mobile-illustration {
        height: 400px;
    }

    .video-container {
        max-width: 350px;
    }

    .rocket {
        width: 150px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
    }

    .float-icon {
        width: 40px;
        height: 40px;
    }

    .emoji {
        font-size: 24px;
    }

    .pie-chart {
        left: -30px;
    }

    .bell {
        right: -25px;
    }

    .target {
        right: -30px;
    }

    .clock {
        left: -30px;
    }

    .social-icons {
        gap: 0.8rem;
    }

    .social-icon {
        width: 22px;
        height: 22px;
    }

    .content-left h2 {
        font-size: 1.6rem;
        text-align: center;
    }

    .content-left p {
        font-size: 0.85rem;
        margin: 0 auto 1.5rem;
        text-align: center;
        max-width: 500px;
    }

    .request-callback {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .mobile-illustration {
        height: 300px;
    }

    .video-container {
        max-width: 280px;
    }

    .rocket {
        width: 120px;
    }

    .social-icon {
        width: 25px;
        height: 25px;
    }

    .float-icon {
        width: 30px;
        height: 30px;
    }

    .emoji {
        font-size: 20px;
    }

    .pie-chart {
        left: -20px;
    }

    .bell {
        right: -20px;
    }

    .target {
        right: -25px;
    }

    .clock {
        left: -25px;
    }

    .social-icons {
        gap: 0.6rem;
        bottom: -20px;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }

    .content-left h2 {
        font-size: 1.4rem;
    }

    .content-left p {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
        max-width: 100%;
    }

    .request-callback {
        padding: 10px 25px;
        font-size: 0.9rem;
        width: auto;  /* Override previous width setting */
        max-width: none;  /* Override previous max-width setting */
    }
}

/* Video Section Styles */
.video-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.video-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-wrapper {
    width: 100%;
    max-width: 800px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button i {
    font-size: 2rem;
    color: #0066FF;
    margin-left: 5px; /* Offset to center the play icon visually */
}

.play-button:hover i {
    color: white;
}

.video-text {
    text-align: center;
    max-width: 600px;
}

.video-text h2 {
    font-size: 2.2rem;
    color: #2B2D42;
    margin-bottom: 1rem;
    font-weight: 600;
}

.video-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

/* Video Section Responsive Styles */
@media (max-width: 992px) {
    .video-section {
        padding: 60px 0;
    }

    .video-text h2 {
        font-size: 1.8rem;
    }

    .video-text p {
        font-size: 1rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 40px 0;
    }

    .video-wrapper {
        border-radius: 15px;
    }

    .video-wrapper video {
        border-radius: 15px;
    }

    .video-text h2 {
        font-size: 1.5rem;
    }

    .video-text p {
        font-size: 0.9rem;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-button i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 30px 0;
    }

    .video-wrapper {
        border-radius: 10px;
    }

    .video-wrapper video {
        border-radius: 10px;
    }

    .video-text {
        padding: 0 1rem;
    }

    .video-text h2 {
        font-size: 1.3rem;
    }
}

/* Strategies Section */
.strategies-section {
    padding: 80px 0;
    background: #fff;
}

.strategies-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.strategies-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.strategies-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #009688;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 600;
    padding-bottom: 1rem;
}

.strategies-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #009688, #4DB6AC);
    border-radius: 2px;
}

.strategy-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 100px;
    padding: 20px;
    background: transparent !important;
}

.strategy-item:last-child {
    margin-bottom: 50px;
}

/* Reverse layout for alternating items */
.strategy-item.reverse {
    flex-direction: row-reverse;
}

.strategy-video {
    flex: 1;
    max-width: 50%;
    background: transparent !important;
}

.strategy-text {
    flex: 1;
    max-width: 50%;
    padding: 20px;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.strategy-text h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.strategy-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .strategy-item,
    .strategy-item.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .strategy-video,
    .strategy-text {
        max-width: 100%;
    }

    .strategy-text {
        text-align: center;
    }

    .strategies-content h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .strategies-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .strategies-content h2::after {
        width: 60px;
    }

    .strategy-item {
        padding: 1rem;
    }

    .phone-frame {
        width: 180px;
        height: 360px;
        border-width: 6px;
    }

    .strategies-section .request-callback {
        margin-top: 1rem;
        padding: 0.7rem 1.4rem;
        font-size: 0.85rem;
        width: 80%;  /* Make button wider on mobile */
        max-width: 300px;  /* But not too wide */
    }
}

/* Animation for videos */
.video-container {
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: scale(1.02);
}

/* Section Header Styles */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Request Demo Button */
.request-callback {
    background: #009688;
    color: white;
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 150, 136, 0.2);
}

.request-callback:hover {
    background: #0056b3;
}

.strategies-list {
    flex: 0 1 50%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.strategy-item {
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.strategy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.strategy-item h3 {
    font-size: 1.3rem;
    color: #009688;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-left: 1.2rem;
}

.strategy-item h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #009688;
    border-radius: 2px;
}

.strategy-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.strategies-illustration {
    flex: 0 1 50%;
    position: relative;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: #fff;
    border-radius: 30px;
    position: relative;
    margin: 0 auto;
    border: 10px solid #333;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-icons .icon {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    animation: float 3s infinite ease-in-out;
}

.icon.instagram {
    background: #E1306C;
    top: 10%;
    right: -50px;
    animation-delay: 0.5s;
}

.icon.facebook {
    background: #1877F2;
    top: 30%;
    left: -50px;
    animation-delay: 0.8s;
}

.icon.share {
    background: #25D366;
    top: 50%;
    right: -40px;
    animation-delay: 1.2s;
}

.icon.rss {
    background: #FF4500;
    bottom: 30%;
    left: -45px;
    animation-delay: 1.5s;
}

.icon.email {
    background: #EA4335;
    bottom: 10%;
    right: -35px;
    animation-delay: 1.8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .section-header h2 {
        font-size: 2.4rem;
    }

    .strategies-content {
        gap: 2rem;
    }

    .phone-frame {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 992px) {
    .strategies-content {
        flex-direction: column;
    }

    .strategies-list,
    .strategies-illustration {
        flex: 0 1 100%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .strategies-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .strategy-item h3 {
        font-size: 1.1rem;
    }

    .phone-frame {
        width: 200px;
        height: 400px;
        border-width: 8px;
    }

    .strategies-section .request-callback {
        margin-top: 1.5rem;
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .strategy-item {
        padding: 1rem;
    }

    .phone-frame {
        width: 180px;
        height: 360px;
        border-width: 6px;
    }

    .strategies-section .request-callback {
        margin-top: 1rem;
        padding: 0.7rem 1.4rem;
        font-size: 0.85rem;
        width: 80%;  /* Make button wider on mobile */
        max-width: 300px;  /* But not too wide */
    }
}

/* Remove any shadows or borders that might affect transparency */
.video-container, 
.video-container video,
.strategy-video,
.mobile-illustration {
    box-shadow: none !important;
    border: none !important;
} 